home *** CD-ROM | disk | FTP | other *** search
- <?php
- ////////////////////////////////////////////////////////////////////////////////
- // <!--Copyright (c) 2005 Pure Networks Inc. All rights reserved.-->
- ////////////////////////////////////////////////////////////////////////////////
- //
- // Build: 3.0.6121.0 (Stable)
- // $Revision: #2 $
- //
-
- $sNavLocation = "help";
- require "_session_common.php";
- // assign text for page title to the share name
- $sLocation = "Shared Folders";
- require "_header.php";
- require "_glossary.php";
-
- //which help do we show?
- $sGetVarPage = "home";
- $sLinkSnippet = "#";
- if (isset($_GET['page']))
- {
- // We have a QS value, is it valid?
- switch($_GET['page'])
- {
- case "home":
- case "using":
- case "owner":
- case "troubleshooting":
- case "all":
- $sGetVarPage = $_GET['page'];
- $sLinkSnippet = "?page=";
- break;
- default:
- // already defined the vars as defaults
- break;
- }
- }
-
- //FAQ Breadcrumbs (where are we?)
- $sHelpBreadcrumbs = "<strong>Help</strong> - Click a topic or select from this page's <strong>View</strong> menu.";
- ?>
- <table cellspacing="0" cellpadding="0" border="0" width="100%">
- <tr>
- <td width="100%" valign="top">
- <!-- Start Folder view table -->
- <table cellspacing="0" cellpadding="0" border="0" class="ContentTable">
- <tr>
- <td class="ContentTableTL"><div> </div></td>
- <td class="ContentTableTM2"><div class="Breadcrumbs ContentTableHeadLeft"><?php echo ($sHelpBreadcrumbs); ?></div></td>
- <form method="get" name="viewhelp" id="viewhelp" action="/help">
- <td class="ContentTableTM3" >
- <nobr>
- <div class="ContentTableHeadRight">
- View:
- <select name="page" onchange="document.getElementById('viewhelp').submit();">
- <option value="home" <?php if ($sGetVarPage == "home") { echo (" selected"); } ?>>Help Home Page
- <option value="all" <?php if ($sGetVarPage == "all") { echo (" selected"); } ?>>All Help topics
- <option value="using" <?php if ($sGetVarPage == "using") { echo (" selected"); } ?>>Using this Web Site
- <option value="owner" <?php if ($sGetVarPage == "owner") { echo (" selected"); } ?>>If This is Your <?php echo ($sProductNameInformal); ?> Web Site
- <option value="troubleshooting" <?php if ($sGetVarPage == "troubleshooting") { echo (" selected"); } ?>>Frequently Asked Questions
- </select>
- </div>
- </nobr>
- </td>
- </form>
- <td class="ContentTableTR"><div> </div></td>
- </tr>
- <tr>
- <td class="ContentTableML"><div> </div></td>
- <td class="ContentTableMM" colspan="2">
- <div class="HelpContents">
- <?php // HELP HEADING AND TOP-OF-FILE ANCHOR ?>
-
- <A NAME="#"></A>
-
-
-
- <?php
- switch($_GET['page'])
- {
- case "home":
- echo ("<br/><br/>");
- require ("help_home.php");
- break;
- case "using":
- echo ("<br/><br/>");
- require ("help_using.php");
- break;
- case "owner":
- echo ("<br/><br/>");
- require ("help_owner.php");
- break;
- case "troubleshooting":
- echo ("<br/><br/>");
- require ("help_troubleshooting.php");
- break;
- default:
- echo ("<br/><br/>");
- require ("help_using.php");
- echo ("<br/><br/>");
- require ("help_owner.php");
- echo ("<br/><br/>");
- require ("help_troubleshooting.php");
- echo ("<br/><br/>");
- }
- ?>
- </div>
- </td>
- <td class="ContentTableMR"> </td>
- </tr>
- <tr>
- <td class="ContentTableBL"> </td>
- <td class="ContentTableBM" colspan="2"> </td>
- <td class="ContentTableBR"> </td>
- </tr>
- </table> <!-- End Folder View Table -->
- </td>
- <td valign="top">
-
- <?php
- require "panels.php";
- ?>
-
- </td>
- </tr>
- </table>
- <?php require "_footer.php"; ?>
-
-
-
-
-
-
-